runtime.Frame.PC (field)

18 uses

	runtime (current package)
		extern.go#L212: 	return frame.PC, frame.File, frame.Line, frame.PC != 0
		symtab.go#L32: 	PC uintptr
		symtab.go#L125: 			PC:       pc,
		symtab.go#L155: 		file, line := funcline1(frame.funcInfo, frame.PC, false)
		symtab.go#L234: 			PC:       pc,
		trace.go#L877: 				tmpbuf = traceAppend(tmpbuf, uint64(f.PC))

	runtime/pprof
		pprof.go#L501: 			fmt.Fprintf(w, "#\t%#x\n", frame.PC)
		pprof.go#L506: 			fmt.Fprintf(w, "#\t%#x\t%s+%#x\t%s:%d\n", frame.PC, name, frame.PC-frame.Entry, frame.File, frame.Line)
		proto.go#L222: 	if frame.PC == 0 || frame.Function == "" || frame.File == "" || frame.Line == 0 {
		proto.go#L226: 	if frame.PC == 0 {
		proto.go#L229: 		frame.PC = addr - 1
		proto.go#L542: 	b.pb.uint64Opt(tagLocation_Address, uint64(firstFrame.PC))

	go.uber.org/zap
		logger.go#L376: 			Defined:  frame.PC != 0,
		logger.go#L377: 			PC:       frame.PC,

	golang.org/x/tools/internal/pkgbits
		frames_go17.go#L23: 		visit(frame.File, frame.Line, frame.Function, frame.PC-frame.Entry)

	testing
		testing.go#L597: 		if firstFrame.PC == 0 {